home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
APDL Eductation Resources
/
APDL Eductation Resources.iso
/
programs
/
misc
/
family
/
!FamTools
/
Length
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-06-14
|
187 b
|
6 lines
#Print the longest line in a file.
#Version 1.00 (15 Jun 1994)
length($0) > max { max = length($0); line = $0; num = NR; }
END { print FILENAME " line " num " length " max ":\n" line; }